ProgressDialog Message Fontu
06.11.2015 - 10:10
Arkadaşlar ProgressDialog Message fontunu değiştirmem lazım yardım mesela arka planı beyaz yapacağım yardımcı olur musunuz ?
3
Görüntülenme
0 Beğeni
merhabalar, öncelikle kendi temanızı oluşturun ProgressDialog için:
<style name="YourTheme" parent="@android:style/Theme.Dialog">
<item name="android:alertDialogStyle">@style/CustomAlertDialogStyle</item>
<item name="android:textColorPrimary">#000000</item>
</style>
daha sonra CustomAlertDialogStyle adını verdiğimiz yapıyı oluşturalım color kısımlarında istediğin renklendirmeyi yapabilirsin örnek olsun diye o renkleri yazdım:
<style name="CustomAlertDialogStyle">
<item name="android:bottomBright">@color/white</item>
<item name="android:bottomDark">@color/yellow</item>
<item name="android:bottomMedium">@color/yellow</item>
<item name="android:centerBright">@color/yellow</item>
<item name="android:centerDark">@color/white</item>
<item name="android:centerMedium">@color/white</item>
<item name="android:fullBright">@color/yellow</item>
<item name="android:fullDark">@color/yellow</item>
<item name="android:topBright">@color/yellow</item>
<item name="android:topDark">@color/yellow</item>
</style>
En sonunda oluşturduğumuz progress dialog yapısına ulaşmak için:
ProgressDialog dialog = new ProgressDialog(this, R.style.YourTheme);